crypto/tls.Conn.connectionStateLocked (method)

14 uses

	crypto/tls (current package)
		conn.go#L1615: 	return c.connectionStateLocked()
		conn.go#L1620: func (c *Conn) connectionStateLocked() ConnectionState {
		handshake_client.go#L581: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_client.go#L1094: 			if err := c.config.EncryptedClientHelloRejectionVerify(c.connectionStateLocked()); err != nil {
		handshake_client.go#L1154: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_client_tls13.go#L629: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L429: 		ss, err := c.config.UnwrapSession(hs.clientHello.sessionTicket, c.connectionStateLocked())
		handshake_server.go#L540: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L669: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L832: 		m.ticket, err = c.config.WrapSession(c.connectionStateLocked(), state)
		handshake_server_tls13.go#L328: 			sessionState, err = c.config.UnwrapSession(identity.label, c.connectionStateLocked())
		handshake_server_tls13.go#L886: 		m.label, err = c.config.WrapSession(c.connectionStateLocked(), state)
		handshake_server_tls13.go#L931: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server_tls13.go#L958: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {